net/http.http2FrameHeader.StreamID (field)
54 uses
net/http (current package)
h2_bundle.go#L1737: StreamID uint32
h2_bundle.go#L1773: if h.StreamID != 0 {
h2_bundle.go#L1774: fmt.Fprintf(buf, " stream=%d", h.StreamID)
h2_bundle.go#L1813: StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
h2_bundle.go#L2126: fh.Type, fh.StreamID,
h2_bundle.go#L2129: if fh.StreamID != fr.lastHeaderStream {
h2_bundle.go#L2132: fh.StreamID, fr.lastHeaderStream))
h2_bundle.go#L2135: return fr.connError(http2ErrCodeProtocol, fmt.Sprintf("unexpected CONTINUATION for stream %d", fh.StreamID))
h2_bundle.go#L2143: fr.lastHeaderStream = fh.StreamID
h2_bundle.go#L2172: if fh.StreamID == 0 {
h2_bundle.go#L2301: if fh.StreamID != 0 {
h2_bundle.go#L2436: if fh.StreamID != 0 {
h2_bundle.go#L2474: if fh.StreamID != 0 {
h2_bundle.go#L2539: if fh.StreamID == 0 {
h2_bundle.go#L2544: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2598: if fh.StreamID == 0 {
h2_bundle.go#L2630: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2737: if fh.StreamID == 0 {
h2_bundle.go#L2790: if fh.StreamID == 0 {
h2_bundle.go#L2818: if fh.StreamID == 0 {
h2_bundle.go#L2872: if pp.StreamID == 0 {
h2_bundle.go#L3209: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
h2_bundle.go#L3216: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
h2_bundle.go#L3249: if f.StreamID == 0 {
h2_bundle.go#L5621: if id := res.f.Header().StreamID; id > sc.maxClientStreamID {
h2_bundle.go#L5653: if sc.inGoAway && (sc.goAwayCode != http2ErrCodeNo || f.Header().StreamID > sc.maxClientStreamID) {
h2_bundle.go#L5657: return sc.countError("data_flow", http2streamError(f.Header().StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5703: if f.StreamID != 0 {
h2_bundle.go#L5718: case f.StreamID != 0: // stream-level flow control
h2_bundle.go#L5719: state, st := sc.state(f.StreamID)
h2_bundle.go#L5736: return sc.countError("bad_flow", http2streamError(f.StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5750: state, st := sc.state(f.StreamID)
h2_bundle.go#L5761: sc.closeStream(st, http2streamError(f.StreamID, f.ErrCode))
h2_bundle.go#L5906: id := f.Header().StreamID
h2_bundle.go#L6069: id := f.StreamID
h2_bundle.go#L6082: if st := sc.streams[f.StreamID]; st != nil {
h2_bundle.go#L6138: if err := sc.checkPriority(f.StreamID, f.Priority); err != nil {
h2_bundle.go#L6244: if err := sc.checkPriority(f.StreamID, f.http2PriorityParam); err != nil {
h2_bundle.go#L6247: sc.writeSched.AdjustStream(f.StreamID, f.http2PriorityParam)
h2_bundle.go#L6300: return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L6306: return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L6319: return nil, nil, sc.countError("bad_path_method", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L9996: cs := rl.streamByID(f.StreamID, http2headerOrDataFrame)
h2_bundle.go#L10005: StreamID: f.StreamID,
h2_bundle.go#L10034: StreamID: f.StreamID,
h2_bundle.go#L10325: cs := rl.streamByID(f.StreamID, http2headerOrDataFrame)
h2_bundle.go#L10331: if f.StreamID >= neverSent {
h2_bundle.go#L10362: StreamID: f.StreamID,
h2_bundle.go#L10370: StreamID: f.StreamID,
h2_bundle.go#L10379: StreamID: f.StreamID,
h2_bundle.go#L10610: cs := rl.streamByID(f.StreamID, http2notHeaderOrDataFrame)
h2_bundle.go#L10611: if f.StreamID != 0 && cs == nil {
h2_bundle.go#L10626: StreamID: f.StreamID,
h2_bundle.go#L10639: cs := rl.streamByID(f.StreamID, http2notHeaderOrDataFrame)